d642afcbe8ca925d395499af560547500c144ae6,src/main/java/fr/minecraftforgefrance/common/DownloadUtils.java,DownloadUtils,validateJar,#File#number[]#List#,224

Before Change



    public static boolean validateJar(File libPath, byte[] data, List<String> checksums) throws IOException
    {
        System.out.println(LANG.getTranslation("proc.checkingchecksum").replace("$p", libPath.getAbsolutePath()));

        HashMap<String, String> files = new HashMap<String, String>();
        String[] hashes = null;

After Change



    public static boolean validateJar(File libPath, byte[] data, List<String> checksums) throws IOException
    {
        Logger.info(String.format("Checking %s internal checksums", libPath.getAbsolutePath()));

        HashMap<String, String> files = new HashMap<String, String>();
        String[] hashes = null;